home *** CD-ROM | disk | FTP | other *** search
/ Turnbull China Bikeride / Turnbull China Bikeride - Disc 2.iso / ACORNUSERS / CBSA / GAMES / ZIP2000 / Utilities / !Inform / Desc < prev    next >
Text File  |  1995-11-20  |  2KB  |  105 lines

  1. # This is a description of the wimp interface for Inform
  2.  
  3. tool_details_start
  4.    name          "Inform";
  5.    version       "5.5 (20-Nov-95)";
  6.    wimpslot      320k;
  7.    has_extended_cmdline;
  8. tool_details_end
  9.  
  10.  
  11. metaoptions_start
  12.    has_auto_run;
  13.    has_auto_save ^."games."leafname from icn 3;
  14.    has_text_window;
  15.    has_summary_window;
  16.    display_dft_is text;
  17. metaoptions_end
  18.  
  19.  
  20. fileoutput_start
  21.    output_dft_is produces_output;
  22. fileoutput_end
  23.  
  24.  
  25. dbox_start
  26.  
  27.    icons_start
  28.       icn 3  maps_to string not_saved;
  29.       icn 5  maps_to "+" string;
  30.       icn 9  maps_to "-v" number;
  31.       icn 10 decreases icn 9 min 3;
  32.       icn 11 increases icn 9 max 8;
  33.       icn 12 maps_to "-g";
  34.       icn 13 maps_to "-T";
  35.       icn 14 maps_to "-e";
  36.       icn 15 maps_to "-s";
  37.       icn 16 maps_to "$small";
  38.       icn 17 maps_to "$large";
  39.       icn 18 maps_to "$huge";
  40.    icons_end
  41.  
  42.    #default icon values
  43.    defaults
  44.       icn 5  "Inform:Library",
  45.       icn 9  5,
  46.       icn 12 off,
  47.       icn 13 on,
  48.       icn 14 off,
  49.       icn 15 off,
  50.       icn 16 off,
  51.       icn 17 on,
  52.       icn 18 off;
  53.                 
  54.    imports_start
  55.       drag_to icn 3   inserts icn 3 separator_is " ";
  56.       drag_to iconbar inserts icn 3;
  57.    imports_end
  58.  
  59. dbox_end
  60.  
  61.  
  62. menu_start
  63.  
  64.    "Contract spaces"  maps_to "-d";
  65.    "Frequencies"      maps_to "-f";
  66.    "Override"         maps_to "-i";
  67.    "List objects"     maps_to "-j";
  68.    "Infix debugging"  maps_to "-k";
  69.    "Record text"      maps_to "-r";
  70.    "Statistics"          maps_to "-s";
  71.    "Trace assembly"   maps_to "-t";
  72.    "Optimise abbrevs" maps_to "-u";
  73.    "No warnings"      maps_to "-w";
  74.    "Progress"          maps_to "-x";
  75.    "Temporary files"  maps_to "$temp_files=" sub_menu "    Path:    " 256;
  76.    "Other"            maps_to ""             sub_menu "   Others:   " 256;
  77.  
  78.    defaults
  79.       menu  1 on,
  80.       menu  2 off,
  81.       menu  3 off,
  82.       menu  4 off,
  83.       menu  5 off,
  84.       menu  6 off,
  85.       menu  7 off,
  86.       menu  8 off,
  87.       menu  9 off,
  88.       menu 10 off,
  89.       menu 11 off,
  90.       menu 12 on  sub_menu "<Wimp$ScrapDir>.",
  91.       menu 13 off sub_menu "";
  92.  
  93. menu_end
  94.  
  95.  
  96. deselections_start
  97.  
  98.       icn 16 deselects icn 17, icn 18;
  99.       icn 17 deselects icn 16, icn 18;
  100.       icn 18 deselects icn 16, icn 17;
  101.       
  102. deselections_end
  103.  
  104. order_is icn 9, icn 12, icn 13, icn 14, icn 15, menu 1, menu 2, menu 3, menu 4, menu 5, menu 6, menu 7, menu 8, menu 9, menu 10, menu 11, menu 13, icn 5, icn 16, icn 17, icn 18, menu 12, icn 3, output;
  105.